math/big.nat.utoa (method)

8 uses

	math/big (current package)
		decimal.go#L83: 	s := m.utoa(10)
		ftoa.go#L337: 	buf = append(buf, m.utoa(10)...)
		ftoa.go#L389: 	hm := m.utoa(16)
		ftoa.go#L439: 	buf = append(buf, bytes.TrimRight(m.utoa(16), "0")...)
		intconv.go#L118: 	digits := x.abs.utoa(base)
		natconv.go#L258: func (x nat) utoa(base int) []byte {
		ratconv.go#L368: 	buf = append(buf, q.utoa(10)...) // itoa ignores sign if q == 0
		ratconv.go#L372: 		rs := r.utoa(10)